home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Complete Utilities To…ka 501 Killer Utilities!
/
501 Killer Utilities! (Macworld July 1995).cdr
/
Programming
/
RLaB
/
rlib
/
asinh.r
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1994-02-21
|
320 b
|
15 lines
|
[
TEXT/RLAB
]
//-------------------------------------------------------------------//
// Syntax: asinh ( X )
// Description:
// Asinh is the inverse hyperbolic sine of the element(s) of X.
//-------------------------------------------------------------------//
asinh = function ( x )
{
return log (x + sqrt (x.^2 + 1));
};